Call stack and single threaded JS
December, 2021A call stack is used by JS interpreter to keep track of its place in a script that calls multiple functions — what function is currently being run and what functions are called from within that function, etc.
Read More